home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIB_DEBUG_PROTOS_H
- #define CLIB_DEBUG_PROTOS_H
-
- /*
- ** $VER: debug_protos.h 40.1 (17.5.1996)
- ** Includes Release 44.1
- **
- ** C prototypes. For use with 32 bit integers only.
- **
- ** Copyright © 1999 Amiga, Inc.
- ** All Rights Reserved
- */
-
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
- LONG KCmpStr( CONST STRPTR a, CONST STRPTR b );
- LONG cmpstrexec( CONST STRPTR a, CONST STRPTR b );
- LONG KGetChar( VOID );
- LONG kgetc( VOID );
- LONG kgetchar( VOID );
- LONG kgetch( VOID );
- LONG KGetCh( VOID );
- LONG KGetNum( VOID );
- LONG kgetnum( VOID );
- LONG KMayGetChar( VOID );
- LONG KMayGetCh( VOID );
- VOID KPutFmt( CONST STRPTR formatString, CONST APTR values );
- VOID KVPrintF( CONST STRPTR formatString, CONST APTR values );
- VOID kvprintf( CONST STRPTR formatString, CONST APTR values );
- VOID KPrintF( CONST STRPTR formatString, ... );
- VOID kprintf( CONST STRPTR formatString, ... );
- VOID KPutChar( LONG ch );
- VOID kputc( LONG ch );
- VOID kputchar( LONG ch );
- VOID kputch( LONG ch );
- VOID KPutCh( LONG ch );
- VOID KPutStr( CONST STRPTR string );
- VOID kputs( CONST STRPTR string );
- VOID KPutS( CONST STRPTR string );
- VOID KDoFmt( CONST STRPTR formatString, CONST APTR dataStream, CONST APTR putChProc, APTR putChData );
-
- #ifdef __cplusplus
- }
- #endif /* __cplusplus */
-
- #endif /* CLIB_DEBUG_PROTOS_H */
-